home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks96 / ObiWanDCMDSourceDist.sit / ObiWan DCMD Source Dist / LineTypes.p next >
Text File  |  1996-06-22  |  177b  |  15 lines

  1. unit LineTypes;
  2.  
  3. interface
  4.  
  5.     const
  6.         lines_max = 12;
  7.         width_max = 80;
  8.  
  9.     type
  10.         lineStr = string[width_max];
  11.         linesArray = array[1..lines_max] of lineStr;
  12.  
  13. implementation
  14.  
  15. end.